home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 June: Reference Library / Dev.CD Jun 94.toast / Periodicals / develop / develop Issue 18 / develop 18 code / OSA Sample / Sources / VersionResource.r < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-28  |  976 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        VersionResources.r
  3.  
  4.     Contains:    Standard version resource for SimpliFace
  5.  
  6.     Developed by:    
  7.         
  8.         Paul G Smith (commstalk hq & Full Moon Software, Inc)
  9.         
  10.         you can leave messages at (UK): 0727 844232; (US): 408 253 7199
  11.         BUT I prefer to be contacted by e-mail
  12.         AppleLink:     SMITH.PG
  13.         Internet:     SMITH.PG@applelink.apple.com
  14.         
  15.         "SimpliFace" Sample code to accompany develop article
  16.         on techniques for embedding scripts in applications.
  17.  
  18. */
  19.  
  20.  
  21.  
  22. #include "SysTypes.r"
  23.  
  24. #define VMajor            kVersMajor
  25. #define VMinor            kVersMinor
  26. #define VStage            kVersKind
  27. #define VRelease        kVersRev
  28. #define VShortString    kVersion "x" $$Shell("bcount")
  29. #define VLongString1    kVersion "x" $$Shell("bcount") " @ " $$Time ", " $$Date
  30. #define VLongString2    kVersion "; Copyright © commstalk hq, 1993"
  31.  
  32. resource 'vers' (1) {
  33.     VMajor, VMinor, VStage, VRelease, verUS,
  34.     VShortString,
  35.     VLongString1
  36. };
  37.  
  38. resource 'vers' (2) {
  39.     VMajor, VMinor, VStage, VRelease, verUS,
  40.     VShortString,
  41.     VLongString2
  42. };
  43.